home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / PROGEDIT / 2986.ZIP / QEDIT3C.ZIP / HELPME.DOC < prev    next >
Text File  |  1994-02-25  |  13KB  |  322 lines

  1. QEdit common questions and answers:
  2.  
  3.  KEYBOARD
  4. ──────────────────────────────────────────────────────────────────────────────
  5.  
  6.  
  7. QUESTION:   I try to use the "*","-", and "+" key on my numeric keypad and it
  8. doesn't seem to work.
  9.  
  10. ANSWER:     By default QEdit has the Paste, Cut, and Copy commands assigned to
  11. these keys. They are referred to as the "grey*", "grey-", and "grey+" keys. If
  12. you want to use these keys at "Face-value", then unassign them in your
  13. keyboard definition file. See the printed manual for a listing of these keys.
  14.  
  15.  
  16. QUESTION:   I have a NorthGate keyboard that has an additional "*" key, but it
  17. doesn't seem to work.
  18.  
  19. ANSWER:     This extra "*" key is the same as the "grey*" key. Please see the
  20. previous Question and Answer.
  21.  
  22.  
  23. QUESTION:   I can't get the F11 and F12 keys to work.
  24.  
  25. ANSWER:     The F11 and F12 keys are present on "Enhanced Keyboards", also
  26. known as the 101-key keyboards.
  27.  
  28. By default, QEdit has enhanced keyboard testing turned off. Run Qconfig.exe,
  29. select Advanced options, and answer Yes to "Test for presence of enhanced
  30. keyboard (Y/N)? ". Be sure that you Save your changes when you quit
  31. Qconfig.exe. As long as you have an "Enhanced Keyboard" and also a Rom Bios
  32. that recognizes the Enhanced keyboard, you will be able to use these
  33. additional keys. For a list of the "Enhanced Keyboard" keys, see the printed
  34. manual.
  35.  
  36.  
  37. QUESTION:   My TSR will not pop up over QEdit, why?
  38.  
  39. ANSWER:     Some TSR's will not pop-up when Enhanced keyboard calls are being
  40. made. Run Qconfig.exe, select Advanced options, and answer NO to "Test for
  41. presence of enhanced keyboard (Y/N)? ". Be sure that you Save your changes
  42. when you quit Qconfig.exe. This should allow your TSR to pop-up. If you have
  43. Enhanced Keyboard testing turned off, you will not be able to access commands
  44. that you have assigned to the F11, F12, and other enhanced keys. For a list of
  45. the Enhanced keyboard keys, see the printed manual.
  46.  
  47.  
  48. QUESTION:   My Tab key doesn't seem to work right. What is wrong?
  49.  
  50. ANSWER:     It's possible that you have ToggleSmartTabs ON. Make sure that
  51. ToggleSmartTabs is OFF.  Please see the printed manual for a description of
  52. the ToggleSmartTabs command.
  53.  
  54.  
  55.  TEXT ENTRY AND MANIPULATION:
  56. ──────────────────────────────────────────────────────────────────────────────
  57.  
  58.  
  59. QUESTION:   How can I enter _ANY_ ASCII character in QEdit?
  60.  
  61. ANSWER:     Any ASCII character having a decimal value of 0-255 can be entered
  62. into a text file while in QEdit using one of the following methods:
  63.  
  64.                                 ASCII 1-255:
  65.  
  66. Press and hold the <ALT> key. Now, using the numeric keypad (this is the
  67. keypad that is usually located on the right hand side of the keyboard), type
  68. the decimal value of the Ascii character that you want. Now release the <ALT>
  69. key and you should have the character placed in your text. (If you have a
  70. problem entering an ASCII 240, see the discussion in this section.)
  71.  
  72.                                   ASCII 0:
  73.  
  74. To enter the NULL character (Ascii 0) into your text, first use QEdit's
  75. literal command (our default <CTRL P> ) and then press <CTRL @>. You will get
  76. the NULL character placed in your text (it will look like a space).
  77.  
  78. For more information on the Alt numeric keypad see the QEdit tip on page 1-26
  79. of the printed manual. For more information on the Literal command see the
  80. printed manual.
  81.  
  82.  
  83. QUESTION:   How can I change a lower case character to an Upper case one or
  84. Vice-versa?
  85.  
  86. ANSWER:     QEdit has 3 case changing commands. They are Upper, Lower, and
  87. Flip. These commands can be used to force uppercase, lowercase, or togglecase
  88. at the cursor position OR on all characters in a marked block (if the cursor
  89. is within the marked block).
  90.  
  91.  
  92. QUESTION:   How can I enter page breaks into my text?
  93.  
  94. ANSWER:     You can enter a Form-feed character into your text by using the
  95. Literal command (our default <CTRL P> ) followed by <CTRL L>. You can also use
  96. the Alt-numeric keypad method (described previously). Hold the <ALT> key and
  97. type 12 on the numeric keypad, then release the <ALT> key.
  98.  
  99.  
  100. QUESTION:   I am writing batch files and QEdit puts a carriage return/line
  101. feed on the last line of a file. How can I keep from getting the double Dos
  102. prompt when my batch file is done?
  103.  
  104. ANSWER:     QEdit writes a carriage return/line feed pair at the end of each
  105. line whenever a file is saved. If you don't want the carriage return/line feed
  106. on the last line of a batch file to be "SEEN" by Dos, then enter a Ctrl Z as
  107. the last character on the last line. Dos will stop processing the batch file
  108. when the ctrl Z is reached so you won't get the double prompt.
  109.  
  110.  
  111. QUESTION:   How do I enter a NULL character into my text?
  112.  
  113. ANSWER:     Use QEdit's Literal command (our default <CTRL P>) immediately
  114. followed by <CTRL @>. This will place a NULL (ASCII 0) character in your text.
  115. Please see the discussion of the Literal command in this section.
  116.  
  117.  
  118. QUESTION:   How can I draw boxes in QEdit?
  119.  
  120. ANSWER:     Use the ToggleBoxDraw command (our default <SHIFT F1>). When box
  121. drawing mode is on, a "B" will be present in the Status line. You can now use
  122. the cursor keys to draw boxes in your text. To turn box drawing off, issue the
  123. ToggleBoxDraw command again. The "B" will be gone from the status line. You
  124. can also select several Box Styles, plus an eraser mode, by using the
  125. ToggleBoxType command (our default <ALT F1>).
  126.  
  127.  
  128. QUESTION:   I try to enter an ASCII 240 using the Alt numeric keypad and my
  129. system seems to hang. What can I do?
  130.  
  131. ANSWER:     There is a "Known" problem with some versions of the Phoenix Bios
  132. that occurs when an ASCII 240 is being generated from the numeric keypad and
  133. "Enhanced Keyboard" calls are being made.
  134.  
  135. Internally, the bios code enters an infinite loop. To break out of this loop,
  136. Press <CTRL BREAK> and you will again have control of your keyboard. *NOTE:
  137. <CTRL C> will NOT get you out of the loop, you must use <CTRL BREAK>. If you
  138. have enhanced keyboard testing turned off in QEdit, you will not have this
  139. problem.
  140.  
  141. As a side note, DOS 4.0 and above also make enhanced keyboard calls and the
  142. above discussion applies there as well.
  143.  
  144.  
  145. QUESTION:   How can I change all the Tab characters in a file to spaces?
  146.  
  147. ANSWER:     Use the TabsToSpaces command (<Esc><O><X>)
  148.  
  149.  
  150.  
  151.  FINDING TEXT
  152. ──────────────────────────────────────────────────────────────────────────────
  153.  
  154.  
  155. QUESTION:   How can I limit a "FIND" or "SEARCH and REPLACE" operation to a
  156. specified area?
  157.  
  158. ANSWER:     The "L" option was added as a way for the user to limit a search
  159. operation to within a marked block area. When prompted for options, just
  160. include "L" with the other options.
  161.  
  162.  
  163. QUESTION:   How can I do a Find and place the found item on the center of the
  164. screen.
  165.  
  166. ANSWER:     Set the "Center Finds" option on (<Esc><S><C>)
  167.  
  168.  
  169.  
  170.  CURSOR MOVEMENT
  171. ──────────────────────────────────────────────────────────────────────────────
  172.  
  173.  
  174. QUESTION:   When I use the cursor key in QEdit to move to the right or left,
  175. the cursor stays on the same line when I come to the beginning or end of the
  176. line. How can I have the cursor move to the start of the next line when I
  177. reach the end of the current line OR move to the end of the previous line when
  178. I reach the beginning of the current line?
  179.  
  180. ANSWER:     Assign the following macro in your Qconfig.dat file:
  181.  
  182. cursorleft  MacroBegin CursorLeft JTrue end: CursorUp JFalse end: EndLine end:
  183.  
  184. cursorright MacroBegin IsEndLine JTrue down: CursorRight Jump end: down:
  185.     CursorDown JFalse end: BegLine end:
  186.  
  187.  
  188. QUESTION:   When I am inserting text on a line, wordwrap does not seem to
  189. work.
  190.  
  191. ANSWER:     In order for wordwrap to operate, the cursor has to exceed the
  192. right margin that has been set. Once the right margin has been exceeded and
  193. you type a non-wordset character, the line will wrap.
  194.  
  195.  
  196.  PRINTER
  197. ──────────────────────────────────────────────────────────────────────────────
  198.  
  199.  
  200. QUESTION:   How can I enter Printer control codes in QEdit?
  201.  
  202. ANSWER:     Please see the TEXT ENTRY AND MANIPULATION section. You will need
  203. to know the ASCII values of the control characters. These values will be
  204. mentioned in your printer manual.
  205.  
  206.  
  207. QUESTION:   I print a file that I have in QEdit, but the Box drawing
  208. characters do not print on my printout.
  209.  
  210. ANSWER:     Check your printer manual and make sure that you have the printer
  211. set up to utilize the Character Graphics Set.
  212.  
  213.  
  214. QUESTION:   How can I have QEdit print to LPT2 or Com1?
  215.  
  216. ANSWER:     Set the appropriate print device via the QCONFIG program, or set
  217. it interactively via the Print pulldown menu.
  218.  
  219.  
  220. QUESTION:   How can I get double spaced lines on my printout?
  221.  
  222. ANSWER:     You can use the "print left margin" setting to obtain double and
  223. triple spaced text in most cases. If you have your printer set up so that it
  224. prints 80 characters on a line, then set the "print left margin" in QEdit to
  225. 80. This will cause QEdit to send 80 spaces before printing each line, so
  226. effectively get double spaced lines. If you want triple spacing, then make the
  227. setting 160.
  228.  
  229.  
  230. QUESTION:   I have QEdit sending formfeeds to the printer, but am getting
  231. parts of a page AND some blank pages on my printout.
  232.  
  233. ANSWER:     Make sure that your text does not have some long lines that are
  234. being wrapped by the printer. If your printer wraps at 80 characters on a
  235. line, make sure that your file does not have lines longer than 80 characters.
  236.  
  237.  
  238.  CONFIGURATION
  239. ──────────────────────────────────────────────────────────────────────────────
  240.  
  241.  
  242. QUESTION:   I make some changes to QEdit using Qconfig.exe and they do not
  243. take effect.
  244.  
  245. ANSWER:     Make sure that you are using the copy of QEdit that you just
  246. configured. If you are not in the current directory where your newly
  247. configured copy of QEdit is, then check your path to see if you are getting a
  248. different copy of QEdit. Be sure to look for batch files as well as EXE's and
  249. COM's that share the same primary name. I.E. Look for Q.exe, Q.com, Q.bat
  250. along your path.
  251.  
  252.  
  253.  QEDIT COMMANDS
  254. ──────────────────────────────────────────────────────────────────────────────
  255.  
  256.  
  257. QUESTION:   When I use the CenterLine command, my text is not centered on the
  258. screen.
  259.  
  260. ANSWER:     The centerline command uses column 1 and the right margin that you
  261. have set as the basis for centering text. If you want the text centered on the
  262. screen, assuming that your screen is 80 columns wide, you can set your right
  263. margin to 80 and then issue the centerline command. If you don't want to
  264. change your right margin, you can use column block marking to mark your left
  265. and right hand margins, then issue the centerline command.
  266.  
  267.  
  268. QUESTION:   How do I get the Sort command to work?
  269.  
  270. ANSWER:     In order to use the Sort command, you must be in a single,
  271. nonzoomed window. You must use the MarkColumn command to mark the range of
  272. lines to sort, and the width of the field to sort on as the key. If you use
  273. any other type of blocking, the sort command will not work.
  274.  
  275.  
  276.  QEDIT COMMAND LINE OPTIONS
  277. ──────────────────────────────────────────────────────────────────────────────
  278.  
  279.  
  280. QUESTION:   How can I have QEdit run a macro on start-up?
  281.  
  282. ANSWER:     The "-Emacroname" or "/Emacroname" command line switch, will
  283. execute the first macro in macroname. Be sure to specify a path to macroname
  284. if it is not in the current directory. E.G.  Q ABC -Ec:\path\mymacro.mac will
  285. load file ABC and execute the first macro in c:\path\mymacro.mac. Please note
  286. that this switch does not load macroname. If you also want to load macroname,
  287. then use the -L or /L option described in this section.
  288.  
  289.  
  290. QUESTION:   How can I have QEdit pre-load a macro set?
  291.  
  292. ANSWER:     The "-Lmacroname" or "/Lmacroname" command line switch, will load
  293. macroname. Be sure to specify a path to macroname if it is not in the current
  294. directory. E.G.  Q ABC -Lc:\path\mymacro.mac will load file ABC and load the
  295. macrofile c:\path\mymacro.mac.
  296.  
  297.  
  298. QUESTION:   I used to be able to have QEdit load a file and then go to a
  299. certain line number, but now it does not work.
  300.  
  301. ANSWER:     In versions of QEdit prior to version 2.1, going to a specified
  302. line on startup was a configuration program option. This has been replaced
  303. with a command line switch of the format -nLINE# or /nLINE#. I.E. To load file
  304. ABC and immediately go to line# 35 type:  Q ABC -n35
  305.  
  306.  
  307. QUESTION:   How can I have QEdit come up in 43/50 line mode?
  308.  
  309. ANSWER:     Set the appropriate option via the QCONFIG program.  See the
  310. Colors/Screen section.
  311.  
  312.  
  313. QUESTION:   How do I use a QEdit command that is not tied to a key?
  314.  
  315. ANSWER:     If you would like to have the command available at all times, just
  316. assign the command to a key in your keyboard definition file. Once you have
  317. modified your keyboard file, be sure to run the Qconfig.exe program. Select
  318. the Keys option, supply the name of your Keyboard file, then save your changes
  319. and quit the program.
  320.  
  321. You may use all the QEdit commands when creating macros.
  322.